/* Custom CSS for Devgiri Technologies */

/* General Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}
.dts-logo {
    height: 140px;
    width: auto;
    padding-top: 10px;
}
/*Nave bar*/
/* DTS Logo Styling */
.logo-wrapper {
    text-decoration: none;
    line-height: 1;
    padding: 0;
}

.dts-logo {
    height: 140px;
    width: auto;
    padding-top: 10px;
}



.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 80px;
}

.navbar.scrolled {
    padding: 5px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 1.8rem;
}

.navbar-brand span {
    color: var(--teal);
}

.nav-link {
    color: var(--navy-blue);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--teal);
}


.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    padding: 80px 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    padding: 80px 0;
}

/* Custom Colors */
.bg-indigo {
    background-color: #6610f2;
}

.bg-cyan {
    background-color: #0dcaf0;
}

.bg-orange {
    background-color: #fd7e14;
}

.bg-teal {
    background-color: #20c997;
}

.bg-purple {
    background-color: #6f42c1;
}

.text-indigo {
    color: #6610f2;
}

.text-cyan {
    color: #0dcaf0;
}

.text-orange {
    color: #fd7e14;
}

.text-teal {
    color: #20c997;
}

.text-purple {
    color: #6f42c1;
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-info-light {
    background-color: rgba(13, 202, 240, 0.1);
}

.bg-indigo-light {
    background-color: rgba(102, 16, 242, 0.1);
}

.bg-success-light {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-purple-light {
    background-color: rgba(111, 66, 193, 0.1);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1);
}



/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Footer*/
footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 50px 0 20px;
    
   
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--teal);
}

.footer-text {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--teal);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--teal);
    padding-left: 5px;
}

.social-links {
    margin-top: 20px;
   
}

.social-links a {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-top: 10px;
}




.social-links a:hover {
    background-color: var(--teal);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.7);
}

/* Hover Effects */
.hover-white:hover {
    color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section, .cta-section {
        padding: 50px 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}